home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 031a / tap110.zip / TAP110.TXT < prev    next >
Text File  |  1991-08-26  |  11KB  |  258 lines

  1.  REAL Numbers - Version 1.10                                    TAP110.TXT
  2.  -------------------------------------------------------------------------
  3.  Copyright 1990, 1991 BU Systems Company
  4.  PO Box 1065, Lafayette, CA 94549
  5.  510-284-1610
  6.  
  7.  This text file describes REAL Numbers, presents examples, and lists changes
  8.  in version 1.1.  TAP110.EXE is a self-extracting archive containing the
  9.  REAL Numbers program, documentation, and tutorial files.
  10.  
  11.  REAL Numbers provides multiple scrolling calculator tapes that can be
  12.  edited, saved, formatted, and printed.  MUCH MORE THAN JUST A CALCULATOR,
  13.  it can be used for a wide range of business, home, and school applications.
  14.  Use it as a calculator, or a checkbook manager, or a business accounting
  15.  system, among many possible uses.
  16.  
  17.  PROGRAM FEATURES
  18.  ----------------
  19.  * Up to 15 unlimited length scrolling tapes in separate windows.
  20.    Actual maximum is limited by computer memory and complexity of the
  21.    tape.  About 8,000 lines is typical capacity for 640k.  It runs well
  22.    on floppy systems with 256k.
  23.  
  24.  * A column for descriptive text in each tape.
  25.  
  26.  * Over 30 built-in functions and operators:
  27.  
  28.       + - * / Arithmetic         DL    Delta percent
  29.       e pi    Constants          RND   Round
  30.       %       Percent            ABS   Absolute value
  31.       ^       Power              MOD   Modulus
  32.       S T TS  Subtotal, Total
  33.       SQR     Square root        -- Finance and Business --
  34.       INV     Inverse (1/x)      PV    Present value
  35.       LOG     Log base 10        FV    Future value
  36.       LN      Log base e         PVA   Present value of annuity
  37.       SIN     Sine               FVA   Future value of annuity
  38.       COS     Cosine             LAMT  Loan amount
  39.       TAN     Tangent            LPMT  Loan payment
  40.       ASIN    Arcsine            LINT  Loan interest
  41.       ACOS    Arccosine          LPER  Loan payment periods
  42.       ATAN    Arctangent         GPM   Gross profit margin
  43.       DTOR    Degrees to radians
  44.       RTOD    Radians to degrees
  45.  
  46.  * Report writer for formatting and printing tapes.  This can be used to
  47.    produce documents such as balance sheets and budgets.
  48.  
  49.  * Evaluation of algebraic expressions with nested parentheses.
  50.  
  51.  * Automatic background recalculation whenever a tape line is changed.
  52.  
  53.  * Unlimited number of named memory variables, for example "SALES".
  54.  
  55.  * File handling for saving, loading, and exporting tape files.  A new
  56.    version 1.1 feature is the ability to export comma delimited files
  57.    for loading into Lotus spreadsheets and other programs.
  58.  
  59.  * Flexible setup options, including:
  60.       Negative values with leading minus, trailing minus, or parentheses.
  61.       Rounding up, down, or to nearest digit, from 0 to 18 decimal places.
  62.       Decimal position can be fixed or floating, or placed automatically.
  63.  
  64.  * Pull-down menus and over 50 help screens.
  65.  
  66.  
  67.  EXAMPLE #1
  68.  ----------
  69.  A few examples of mathematical operators and functions:
  70.  
  71.       --- Labels Column ---  --- Tape Column ---
  72.  
  73.      Add a column of numbers:+    123,456,789.12
  74.                              +              2.22
  75.                              +              3.33
  76.      Subtotal                =    123,456,794.67
  77.      Reverse sign    (line 7)=    123,456,794.67-
  78.         <Clear>              C
  79.      Algebraic expression    =          (1+2+3)*5
  80.      Add that to the subtotal+             30.00
  81.      Add 5% of that          +                 5%
  82.      Subtotal       (line 12)=             31.50
  83.      Line 7 + Line 12        =             L7+L12
  84.                              =    123,456,763.17-
  85.         <Clear>              C
  86.      Subtotals and Totals    +              1.10
  87.                              +              3.30
  88.      First subtotal          S              4.40
  89.                              +             10.00
  90.                              +             30.00
  91.      Second subtotal         S             40.00
  92.                              +            200.00
  93.      Show and clear total    T            244.40
  94.  
  95.      Adding a percentage     =             120+5%
  96.                              =               126
  97.      Multiply by percentage  =             120*5%
  98.                              =                 6
  99.  
  100.                   --- MATH FUNCTIONS ----
  101.      Square Root             =             SQR(2)
  102.                              =          1.414214
  103.      Modulus                 =       MOD(33,17.5)
  104.                              =              15.5
  105.      Logarithm base e        =          LN(e^e)/e
  106.                              =                 1
  107.      Delta Percent Change    =        DL(100,150)
  108.         50% increase         =               0.5
  109.  
  110.                  ---- TRIGONOMETRIC ----
  111.      Sine                    =          SIN(pi/2)
  112.                              =                 1
  113.      Arc Tangent             =            ATAN(1)
  114.                              =          0.785398
  115.      Sine of an angle        =      SIN(DTOR(90))
  116.         given in degrees     =                 1
  117.  
  118.  
  119.  EXAMPLE #2
  120.  ----------
  121.  A few examples of business and financial functions:
  122.  
  123.       --- Labels Column ---            --- Tape Column ---
  124.  
  125.      Present Value of $1,000 =             PV(1000,7.2%,10)
  126.         in 10 years @ 7.2%   =                $ 498.944393
  127.  
  128.      Future Value of Annuity =               FVA(100,6%,10)
  129.         $100 for 10 years, 6%=              $ 1,318.079494
  130.  
  131.      Loan Amount, 30 years,  =    LAMT(877.58,10%/12,30*12)
  132.         10%, $877.58/month   =                $ 100,000.96
  133.  
  134.      Loan Payment per month  =    LPMT(100000,10%/12,30*12)
  135.         $100,000, 10%, 30 yrs=                    $ 877.57
  136.  
  137.      Gross Profit Margin     +                  $ 1,000.00
  138.         20% profit margin    +                GPM(1000,20%)
  139.         Retail price         =                  $ 1,250.00
  140.  
  141.  
  142.  EXAMPLE #3
  143.  ----------
  144.  This example shows an algebraic expression.  Note the use of the
  145.  memory variables "XYZ", and "FUDGEFAC".  Memory variables are set
  146.  with the F6 key (M+, M-, M=, MC memory settings are supported).
  147.  
  148.      INV(SQR(ABS(-3*7))+SIN(XYZ)^3)*(FUDGEFAC+4.1%)
  149.  
  150.  
  151.  EXAMPLE #4
  152.  ----------
  153.  This example shows a checkbook, including bank reconciliation and
  154.  an expense account summary.  This is formatted output from the
  155.  report writer.
  156.  
  157.      Date: 08/22/91      Checking Acct# 12511-4049            Page: 1 
  158.                            Pacific Western Bank
  159.  
  160.                     October Farm Account
  161.                     --------------------
  162.      10/01 OPENING BALANCE               $    1,219.22
  163.  
  164.      10/03 1344 Acme Supply / Fertilizer        823.56-
  165.      10/03 1345 Joe's Tractor Repair            124.50-
  166.      10/04 1346 VOID                              0.00
  167.      10/04 1347 4 Corners Tool Shed              18.50-
  168.      10/04 DEPOSIT - COOP Grain Advance       3,725.00
  169.      10/07 1348 Sanchez, Cohen & Smith          137.18-
  170.      10/09 1349 Mechanics Bank                  206.97-
  171.      10/11 1350 Property Tax                  1,985.00-
  172.      10/12 1351 Acme Supply / Pallets           359.20-
  173.      10/13 DEPOSIT - Johnson pasture rent       750.00
  174.      10/13 1352 Transfer to personal acct       950.00-
  175.      10/15 1353 Central Hardware / Nails         17.33-
  176.      10/15 1354 North State Power                87.88-
  177.      10/18 DEBIT - Bank Service Fee              12.50-
  178.      10/20 1355 County Grain Haulers            195.50-
  179.      10/25 1356 Bouchard's Insurance            110.24-
  180.                                          ------------- 
  181.      10/27 ENDING BALANCE                $      665.86
  182.                                          ============= 
  183.  
  184.      BANK RECONCILIATION
  185.         10/18 Bank Balance                    1,348.13
  186.         Uncleared Checks and Deposits           376.53-
  187.                                          ------------- 
  188.         Adjusted Balance                        971.60
  189.         10/18 Book Balance                      971.60-
  190.                                          ------------- 
  191.         Difference                                0.00
  192.                                          ============= 
  193.  
  194.      OCTOBER SUMMARY
  195.         Debt Payments                    $      206.97-
  196.         Personal draw                           950.00-
  197.         Fertilizer                              823.56-
  198.         Insurance                               110.24-
  199.         Professional Fees                       137.18-
  200.         Repairs                                 141.83-
  201.         Supplies                                377.70-
  202.         Taxes                                 1,985.00-
  203.         Hauling and Transportation              195.50-
  204.         Bank Fees                                12.50-
  205.         Utilities                                87.88-
  206.                                          ------------- 
  207.      Total Expenses                      $    5,028.36-
  208.      Opening Cash Balance                     1,219.22
  209.      Receipts                                 4,475.00
  210.      Ending Cash Balance                 $      665.86
  211.                                          ============= 
  212.  
  213.  VERSION 1.10
  214.  ------------
  215.  Highlights of new features and changes are as follows:
  216.  
  217.  1) New File menu Export selection to save a tape in a file format that
  218.     can be imported into Lotus spreadsheets, as well into many other
  219.     popular programs.
  220.  
  221.  2) New 'T'otal, 'S'ubtotal, and 'TS' operators.  'S'ubtotal displays and
  222.     clears the subtotal.  'T'otal displays the sum of previous subtotals
  223.     and clears the total.  The 'TS' operator displays the total without
  224.     clearing it.
  225.  
  226.  3) New Tape menu Clear selection that clears the lines from a tape, while
  227.     retaining the setup and configuration options.
  228.  
  229.  4) A problem with Automatic Decimal placement in numbers has been fixed.
  230.     Use the 'D'ecimal selection on the Setup menu to turn on the automatic
  231.     decimal feature.
  232.  
  233.  5) A problem with line value references has been fixed.  Line values allow
  234.     you to use the value from another line.  For example, L17 refers to the
  235.     value of line 17.
  236.  
  237.  6) Performance improvements, including better use of background
  238.     recalculation.
  239.  
  240.  7) The Help screens have been expanded and reorganized with more examples
  241.     and better assistance for new users.
  242.  
  243.  8) The demonstration tapes (DEMO1, DEMO2, DEMO3) have been modified
  244.     to use the new features in this release.
  245.  
  246.  9) The program now remembers whether the Edit Window in the tape is
  247.     open when you move between the tape and the menu.
  248.  
  249.  10) The print file name for writing a report to a file can be changed
  250.     at the point of starting the report, rather than having to go
  251.     to the Report menu Options Setup selection first.
  252.  
  253.  11) The GPM (gross profit margin) function now works for mark downs
  254.     (with a negative percentage), as well as for mark ups.
  255.  
  256.  ---------------------------<end>--------------------------------
  257.  
  258.